home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen… 1994 February Supplement / ARPL-Feb-94-Supplement-PowerPC.iso / 3rd Party PowerPC Demo Apps / Diehl Graphsoft MiniCad-E / MiniCad 5 Demo (Click Me!) / MiniCad 5 Demo (Click Me!).rsrc / STR#_7012.txt < prev    next >
Encoding:
Text File  |  1994-01-18  |  647 b   |  49 lines

  1. Abs(v);
  2.  
  3. Returns the absolute value of v.
  4.  
  5. Sqr(v);
  6.  
  7. Returns the square of v.
  8.  
  9. Sin(v) : REAL;
  10.  
  11. Returns the sine of v.
  12.  
  13. Cos(v) : REAL;
  14.  
  15. Returns the cosine of v.
  16.  
  17. Exp(v) : REAL;
  18.  
  19. Returns the natural exponential of a v.
  20.  
  21. Ln(v) : REAL;
  22.  
  23. Returns the natural logarithm of v.
  24.  
  25. Sqrt(v) : REAL;
  26.  
  27. Returns the square root of v.
  28.  
  29. ArcTan(v) : REAL;
  30.  
  31. Returns the arctangent of v in radians.
  32.  
  33. ArcSin(v) : REAL;
  34.  
  35. Returns the arcsine of v in radians.
  36.  
  37. ArcCos(v) : REAL;
  38.  
  39. Returns the arccosine of v in radians.
  40.  
  41. Rad2Deg(RadianValue : REAL) : REAL;
  42.  
  43. Converts radians into decimal degrees.
  44.  
  45. Deg2Rad(DegreeValue : REAL) : REAL;
  46.  
  47. Converts decimal degrees into radians.
  48.  
  49.